home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #3 / Amiga Plus CD - 2002 - No. 03.iso / AmiSoft / Biz / Patch / Nc21.lha / 2.1 / CManager / Rexx / SendV.rexx < prev   
OS/2 REXX Batch file  |  1998-09-25  |  655b  |  40 lines

  1. /*
  2.  *      $VER: SendV.rexx 1.0 (5.8.98)
  3.  */
  4.  
  5. parse arg '"'args'" "'BROWSER'"'
  6. options results
  7.  
  8. if show('P','VOYAGER') then do
  9.           address 'VOYAGER'
  10.           SHOW
  11.           OPENURL args
  12.           Exit
  13. end
  14.  
  15. if show('P','VOYAGER.1') then do
  16.           address 'VOYAGER.1'
  17.           SHOW
  18.           OPENURL args
  19.           Exit
  20. end
  21.  
  22.  
  23. ADDRESS COMMAND 'Run ' BROWSER
  24. ADDRESS COMMAND "SYS:RexxC/WaitForPort" 'VOYAGER'
  25.  
  26. if show('P','VOYAGER') then do
  27.           address 'VOYAGER'
  28.           SHOW
  29.           OPENURL args
  30.           Exit
  31. end
  32.  
  33. if show('P','VOYAGER.1') then do
  34.           address 'VOYAGER.1'
  35.           SHOW
  36.           OPENURL args
  37.           Exit
  38. end
  39.  
  40.